-
Notifications
You must be signed in to change notification settings - Fork 11
add full config #144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add full config #144
Conversation
… add_full_config_validation
# Conflicts: # docs/optimizer_config.schema.json
|
Локально тесты проходят, почему ломаются не понимаю |
|
Возможно можно убрать просто кониг searchspace и использовать один этот |
| class TaskConfig(BaseModel): | ||
| """Configuration for the task to optimize.""" | ||
|
|
||
| search_space: OptimizationSearchSpaceConfig | ||
| """Path to the search space configuration file. If None, the default search space will be used""" | ||
| sampler: SamplerType = "brute" | ||
|
|
||
|
|
||
| class OptimizationConfig(BaseModel): | ||
| """Configuration for the optimization process.""" | ||
|
|
||
| data_config: DataConfig = DataConfig() | ||
| task_config: TaskConfig | ||
| logging_config: LoggingConfig = LoggingConfig() | ||
| vector_index_config: VectorIndexConfig = VectorIndexConfig() | ||
| seed: PositiveInt = 42 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
это конфиги и они должны быть в autointent.configs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Могу сюда все конфиги тогда перенести
No description provided.